home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / g_scenar / gp2set31.zip / MOVE30.BAT < prev    next >
DOS Batch File  |  1996-10-14  |  1KB  |  68 lines

  1. @echo off
  2.  
  3. rem Uninstaller for the Grandprix 2 Carset version 3.0 --------------
  4. rem         ⌐1996 PK Arnall, Pieter van Dieren.
  5.  
  6. cls
  7. echo.
  8. echo This batch file will uninstall the 1996 Carset v3.0.
  9. echo.
  10. echo.
  11. echo.
  12. echo If you don't want to continue now, press CTRL-BREAK.
  13. echo.
  14. pause
  15. cls
  16.  
  17. rem Checking if the files are in the right directory ----------------
  18.  
  19. cd..
  20. if not exist gp2.exe goto wrong_dir
  21. if not exist gpsaves\96carset\96cs30.nam goto wrong_set
  22.  
  23. rem Removing the redundant files ------------------------------------
  24.  
  25. cd gamejams
  26. del forte.bmp
  27. del yforte.bmp
  28.  
  29. cd ..\bitmaps
  30. copy cpitl_96.pcx ..\gpsaves\96carset\cpit_org.pcx
  31. del cpitl_96.pcx
  32.  
  33. cd ..\gpsaves\96carset
  34. del 96cs30.ral
  35. del 96cs30.nam
  36. del readme.txt
  37.  
  38. cd..
  39. cd..
  40. del 96cs30.ccp
  41.  
  42. goto ready
  43.  
  44. :wrong_dir
  45. echo You did not copy this uninstall file to the right directory!
  46. echo Read README.TXT how to uninstall the 1996 carset v3.0.
  47. echo.
  48. goto end
  49.  
  50. :wrong_set
  51. echo If you did install carset 3.0 on your system,
  52. echo you probably changed it's default installation.
  53. echo Remove the old files used by carset v3.0 manually.
  54. goto end
  55.  
  56. :ready
  57. cls
  58. echo.
  59. echo All files are now de-installed!
  60. echo.
  61. echo You can now install carset 3.5 by running 96.BAT
  62. echo.
  63. echo Read README.TXT for more information!
  64. echo.
  65. goto end
  66.  
  67. :end
  68.